function logout(to_url) {
  var out = window.location.href.replace(/:\/\//, '://log:out@');

  jQuery.get(out).error(function() {
    window.location = to_url;
    window.location = "/";
  });
}